home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / RZToDoList / Source / ToDoServerProtocol.h < prev   
Encoding:
Text File  |  1995-06-12  |  567 b   |  22 lines

  1. /* 
  2.  * ToDoServerProtocol - protocol for acessing the ToDo application
  3.  * from another program
  4.  *
  5.  * You may freely copy, distribute and reuse the code in this example.
  6.  * This code is provided AS IS without warranty of any kind, expressed 
  7.  * or implied, as to its fitness for any particular use.
  8.  *
  9.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  10.  *
  11.  */
  12.  
  13. #import "ToDoNotifications.h"
  14.  
  15. #define TODO_PORT "ToDoServer"
  16.  
  17. @protocol ToDoServerProtocol
  18. - itemList;
  19. - addItem:anItem;
  20. - registerForNotification:(id <ToDoNotifications>)sender;
  21. @end
  22.